home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / pcl_src.zoo / README < prev    next >
Text File  |  1992-09-09  |  958b  |  46 lines

  1. This is PCL for CLISP.
  2.  
  3.  
  4. What is PCL?
  5. ------------
  6.  
  7. PCL is a freely available implementation of a large subset of CLOS,
  8. the Common Lisp Object System, done at Xerox Corporation.
  9.  
  10.  
  11. Contents:
  12. ---------
  13.  
  14.       pcl.mem         memory image for running PCL (version July 1992)
  15.                       using CLISP (version September 1992)
  16.       get-pcl.txt     instructions how to get PCL
  17.       README          this text
  18.  
  19.  
  20. Installation:
  21. -------------
  22.  
  23. Assuming that you already have installed
  24.  
  25.        clisp                       in  /usr/local/bin/
  26.  
  27. and
  28.  
  29.        lisp.run and lispinit.mem   in  /usr/local/lib/lisp/
  30.  
  31. simply put the memory image in the same place:
  32.  
  33.    mv pcl.mem /usr/local/lib/lisp
  34.  
  35. and create a shell script that starts lisp:
  36.  
  37.    cat > /usr/local/bin/clos
  38.    exec /usr/local/lib/lisp/lisp.run -M /usr/local/lib/lisp/pcl.mem -m 4MB "$@"
  39.    [Ctrl-D]EOF
  40.    chmod a+x /usr/local/bin/clos
  41.  
  42. Then try
  43.  
  44.    clos
  45.  
  46.